sort 排序

std::sort

在漫长的CP岁月中,你可能会学会各种各样的利用std::sort的方法,比如重载运算符,或者写比较函数。同时渐渐忘记如何写快排

甚至一种少见(某种程度上很合理)的内联写法c++11

1
2
3
sort(A.begin(), A.end(), [](const Type& a, const Type& b) {
return a.day < b.day;
});

tbcd…

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×